home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / htdig_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  71 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref: Howard Yeend <h_bugtraq@yahoo.com>
  4. #
  5. # This script is released under the GNU GPLv2
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(15706);
  11.  script_bugtraq_id(5091);
  12.  if ( defined_func("script_xref") ) script_xref(name:"OSVDB", value:"7590");
  13.  
  14.  script_version ("$Revision: 1.2 $");
  15.  name["english"] = "ht://Dig htsearch.cgi XSS";
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = 
  19. "The 'htsearch' CGI, which is part of the ht://Dig package, 
  20. is vulnerable to cross-site scripting attacks,
  21. throught 'words' variable.
  22.  
  23. With a specially crafted URL, an attacker can cause arbitrary
  24. code execution resulting in a loss of integrity.
  25.  
  26. Solution : Upgrade to a newer when available
  27. Risk factor : Medium";
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks if ht://Dig is vulnerable to XSS flaw in htsearch.cgi";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_GATHER_INFO);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  38.  family["english"] = "CGI abuses : XSS";
  39.  script_family(english:family["english"]);
  40.   script_dependencie("cross_site_scripting.nasl");
  41.   script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48.  
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51.  
  52. port = get_http_port(default:80);
  53. if ( ! port ) exit(0);
  54. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  55.  
  56. if(get_port_state(port))
  57. {
  58.    foreach dir (cgi_dirs())
  59.    {
  60.       buf = http_get(item:string(dir,"/htsearch.cgi?words=%22%3E%3Cscript%3Efoo%3C%2Fscript%3E"), port:port);
  61.       r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  62.       if( r == NULL )exit(0);
  63.       if(egrep(pattern:"<script>foo</script>", string:r))
  64.       {
  65.             security_warning(port);
  66.          exit(0);
  67.       }
  68.    }
  69. }
  70.